home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / v9n03.arc / DOORBELL.BAT < prev    next >
DOS Batch File  |  1990-01-12  |  214b  |  11 lines

  1. @ECHO OFF
  2. ECHO DOORBELL.BAT - Batch file to illustrate the use of COUNTER.COM
  3. ECHO Usage: DOORBELL [number]
  4. IF "%1"=="" GOTO loop
  5. ECHO %1 > N.TMP
  6. :loop
  7. ECHO Ding dong!
  8. COUNTER
  9. IF ERRORLEVEL 1 GOTO loop
  10.  
  11.